home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 03 - 1987 / 03.11 Nov 87 / C string library / PStrLib Source / SetFont.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-10-21  |  219 b   |  12 lines  |  [TEXT/KAHL]

  1. /*    FILE:  SetFont.c
  2.     Sets the txFont, txSize, txFace fields of the current GrafPort. */
  3. #include    "PStrLib.h"
  4.  
  5. SetFont(font, size, face)
  6. int        font, size;
  7. Style    face;
  8. {
  9.     TextFont(font);
  10.     TextSize(size);
  11.     TextFace(face);
  12. }